home *** CD-ROM | disk | FTP | other *** search
/ Extra! Mainframe / Extra! Mainframe for Windows 95.iso / snaserv / source / stdinc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-01  |  999 b   |  24 lines

  1. /* Disable C4001: nonstandard extension 'single line comment' was used */
  2. #pragma warning(disable:4001)
  3. /* Disable C4115: 'IRpcStubBuffer' : named type definition in parentheses */
  4. #pragma warning(disable:4115)
  5. /* Disable C4201: nonstandard extension used : nameless struct/union */
  6. #pragma warning(disable:4201)
  7. /* Disable C4209: nonstandard extension used : benign typedef redefinition */
  8. #pragma warning(disable:4209)
  9. /* Disable C4214: nonstandard extension used : bit field types other than int */
  10. #pragma warning(disable:4214)
  11. /* Disable C4514: 'Int64Sh__Mod32' : unreferenced inline function has been removed */
  12. #pragma warning(disable:4514)
  13.  
  14. #include <windows.h>
  15.  
  16. /* Warning 4514 does not kick in until the end of compilation unit so must
  17.    always be disabled.  May be fixed in V3.
  18.    #pragma warning(default:4514) */
  19. #pragma warning(default:4214)
  20. #pragma warning(default:4209)
  21. #pragma warning(default:4201)
  22. #pragma warning(default:4115)
  23. #pragma warning(default:4001)
  24.